home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / ab20 / unarced / utilities / shells / sksh / scr_source / histrm.s < prev    next >
Text File  |  1995-03-17  |  410b  |  17 lines

  1. #!c:sksh
  2.  
  3. #*************************************************************************
  4. # Small function to delete all history files
  5. #*************************************************************************
  6.  
  7.    local _hfile
  8.  
  9.    if [ "$1" = '-?' -o "$#" -ne 0 ]
  10.    then
  11.        echo 'Usage:' $(basename $0)
  12.        echo '       (deletes all saved history files)'
  13.        return 1
  14.    fi
  15.  
  16.    rm -f s:SKsh_Hist.* >nil:
  17.